home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form ballfrm
- BackColor = &H0000FFFF&
- BorderStyle = 0 'None
- Caption = "Form1"
- ClientHeight = 135
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 135
- LinkTopic = "Form1"
- ScaleHeight = 9
- ScaleMode = 3 'Pixel
- ScaleWidth = 9
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Attribute VB_Name = "ballfrm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Dim rgn As Long
- Private Sub Form_Load()
- SetWindowPos Me.hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE
- rgn = CreateRoundRectRgn(0, 0, Me.ScaleWidth, Me.ScaleHeight, Me.ScaleWidth, Me.ScaleHeight)
- SetWindowRgn Me.hWnd, rgn, True
- Randomize
- Me.BackColor = RGB(Int(Rnd * 255), (Rnd * 255), Int(Rnd * 255))
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- DeleteObject rgn
- End Sub
-